home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dbase / techs.zip / TECH11.ZIP / FORM.PRG next >
Text File  |  1985-11-01  |  498b  |  22 lines

  1. * Program..: Form.PRG
  2. * Authors..: Laurie Miller, Ray Love
  3. * Date.....: February 1, 1985
  4. * Version..: dBASE III, any version
  5. * Note(s)..: Prints a form letter by calling Letter.PRG.  Replace
  6. *            the database file, Names.DBF with your database file.
  7. *
  8. SET TALK OFF
  9. SET PRINT ON
  10. * ---Open database file.
  11. USE Names
  12. DO WHILE .NOT. EOF()
  13.    * ---Call Letter.PRG and print prepared form letter.
  14.    DO Letter
  15.    EJECT
  16.    SKIP
  17. ENDDO
  18. SET PRINT OFF
  19. SET TALK ON
  20. * EOP Form.PRG
  21.  
  22.